home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg1.cab / TutorialCreator.xba < prev    next >
Extensible Markup Language  |  2004-05-19  |  546b  |  10 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
  3. <script:module xmlns:script="http://openoffice.org/2000/script" script:name="TutorialCreator" script:language="StarBasic">REM  *****  BASIC  *****
  4. Sub TutorialCreatorMain
  5.     GlobalScope.BasicLibraries.LoadLibrary("Tools")
  6.     myTutorial = createUNOService("com.sun.star.wizards.tutorial.executer.CallTutorialFramework")
  7.     myTutorial.trigger("StartTutorialCreator")
  8. End Sub
  9.  
  10. </script:module>